home *** CD-ROM | disk | FTP | other *** search
/ Aminet 19 / Aminet 19 (1997)(GTI - Schatztruhe)[!][Jun 1997].iso / Aminet / dev / mui / MCC_HTMLtext.lha / MCC_HTMLtext / Install < prev    next >
Encoding:
Text File  |  1997-04-21  |  1.0 KB  |  55 lines

  1. ; INSTALLERSCRIPT for HTMLtext.mcc
  2. ; (C)opyright by Dirk Holtwick, 1997
  3. ; -----------------------------------------
  4.  
  5. (message
  6.    "\nHTMLtext\n"
  7.    "Custom class for MUI\n"
  8.    "© Dirk Holtwick, 1997\n\n"
  9.    "This software is subject to the 'Standard Amiga FD-Software Copyright "
  10.    "Note'. It is SHAREWARE as defined in paragraph 4s. For more information "
  11.    "please read 'AFD-COPYRIGHT' (Version 1 or higher).\n\n"
  12. )
  13.  
  14. ;
  15. ; Copy mcc and mcp
  16. ; ----------------
  17.  
  18. (set #mcc      "HTMLtext.mcc")
  19. (set #mcp      "HTMLtext.mcp")
  20. (set #dst_path "MUI:Libs/mui")
  21. (set #src_path "Libs/MUI")
  22.  
  23. (set #dst_path
  24.    (askdir
  25.       (prompt "Where do you want to install HTMLtext class")
  26.       (help @askdir-help)
  27.       (default #dst_path)
  28.    )
  29. )
  30.  
  31. (copylib
  32.    (prompt (cat "Copying " #mcc))
  33.    (confirm)
  34.    (source (tackon #src_path #mcc))
  35.    (dest #dst_path)
  36.    (help @copylib-help)
  37. )
  38.  
  39. (copylib
  40.    (prompt (cat "Copying " #mcp))
  41.    (confirm)
  42.    (source (tackon #src_path #mcp))
  43.    (dest #dst_path)
  44.    (help @copylib-help)
  45. )
  46.  
  47. ;
  48. ; Exit
  49. ; ----
  50.  
  51. (exit
  52.    (quiet)
  53. )
  54.  
  55.